home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / components / calDavCalendarModule.js < prev    next >
Text File  |  2007-11-20  |  5KB  |  138 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Oracle Corporation code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  *  Oracle Corporation
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
  23.  *   Dan Mosedale <dan.mosedale@oracle.com>
  24.  *   Mike Shaver <mike.x.shaver@oracle.com>
  25.  *   Gary van der Merwe <garyvdm@gmail.com>
  26.  *   Bruno Browning <browning@uwalumni.com>
  27.  *   Matthew Willis <lilmatt@mozilla.com>
  28.  *   Daniel Boelzle <daniel.boelzle@sun.com>
  29.  *   Philipp Kewisch <mozilla@kewis.ch>
  30.  *
  31.  * Alternatively, the contents of this file may be used under the terms of
  32.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  33.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  34.  * in which case the provisions of the GPL or the LGPL are applicable instead
  35.  * of those above. If you wish to allow use of your version of this file only
  36.  * under the terms of either the GPL or the LGPL, and not to allow others to
  37.  * use your version of this file under the terms of the MPL, indicate your
  38.  * decision by deleting the provisions above and replace them with the notice
  39.  * and other provisions required by the GPL or the LGPL. If you do not delete
  40.  * the provisions above, a recipient may use your version of this file under
  41.  * the terms of any one of the MPL, the GPL or the LGPL.
  42.  *
  43.  * ***** END LICENSE BLOCK ***** */
  44.  
  45. // nsIFactory
  46. const calDavCalendarFactory = {
  47.     QueryInterface: function (aIID) {
  48.         if (!aIID.equals(Components.interfaces.nsISupports) &&
  49.             !aIID.equals(Components.interfaces.nsIFactory)) {
  50.             throw Components.results.NS_ERROR_NO_INTERFACE;
  51.         }
  52.         return this;
  53.     },
  54.  
  55.     createInstance: function (outer, iid) {
  56.         if (outer != null)
  57.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  58.         return (new calDavCalendar()).QueryInterface(iid);
  59.     }
  60. };
  61.  
  62. /****
  63.  **** module registration
  64.  ****/
  65.  
  66. var calDavCalendarModule = {
  67.     mCID: Components.ID("{a35fc6ea-3d92-11d9-89f9-00045ace3b8d}"),
  68.     mContractID: "@mozilla.org/calendar/calendar;1?type=caldav",
  69.  
  70.     mUtilsLoaded: false,
  71.     loadUtils: function cDCM_loadUtils() {
  72.         if (this.mUtilsLoaded) {
  73.             return;
  74.         }
  75.  
  76.         const jssslContractID = "@mozilla.org/moz/jssubscript-loader;1";
  77.         const jssslIID = Components.interfaces.mozIJSSubScriptLoader;
  78.  
  79.         const iosvcContractID = "@mozilla.org/network/io-service;1";
  80.         const iosvcIID = Components.interfaces.nsIIOService;
  81.  
  82.         var loader = Components.classes[jssslContractID].getService(jssslIID);
  83.         var iosvc = Components.classes[iosvcContractID].getService(iosvcIID);
  84.  
  85.         // Note that unintuitively, __LOCATION__.parent == .
  86.         // We expect to find utils in ./../js
  87.         var appdir = __LOCATION__.parent.parent;
  88.         appdir.append("js");
  89.         const scripts = ["calUtils.js", "calProviderBase.js",
  90.                          "calDavCalendar.js" ];
  91.  
  92.         for each (var scriptName in scripts) {
  93.             var f = appdir.clone();
  94.             f.append(scriptName);
  95.  
  96.             try {
  97.                 var fileurl = iosvc.newFileURI(f);
  98.                 loader.loadSubScript(fileurl.spec, null);
  99.             } catch (e) {
  100.                 Components.utils.reportError("Error while loading " + fileurl.spec);
  101.                 throw e;
  102.             }
  103.         }
  104.  
  105.         this.mUtilsLoaded = true;
  106.     },
  107.  
  108.     registerSelf: function (compMgr, fileSpec, location, type) {
  109.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  110.         compMgr.registerFactoryLocation(this.mCID,
  111.                                         "Calendar CalDAV back-end",
  112.                                         this.mContractID,
  113.                                         fileSpec,
  114.                                         location,
  115.                                         type);
  116.     },
  117.  
  118.     getClassObject: function (compMgr, cid, iid) {
  119.         if (!cid.equals(this.mCID))
  120.             throw Components.results.NS_ERROR_NO_INTERFACE;
  121.  
  122.         if (!iid.equals(Components.interfaces.nsIFactory))
  123.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  124.  
  125.         this.loadUtils();
  126.  
  127.         return calDavCalendarFactory;
  128.     },
  129.  
  130.     canUnload: function(compMgr) {
  131.         return true;
  132.     }
  133. };
  134.  
  135. function NSGetModule(compMgr, fileSpec) {
  136.     return calDavCalendarModule;
  137. }
  138.